.show_story {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.show_story img {
    max-width: 100%;
    display: block;
}

.text-content {
    margin-right: 50px;
    text-align: right;
    min-width: 300px;
}

.text {
    color: #1d1d1f;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 300;
}

.slide {
    position: relative;
    width: 80%;
    margin: 20px 65px;
    display: grid;
    height: 100%;
    padding: 00px 0;
    /* overflow: hidden; */
}

.slide:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 30%;
    background-color: #f7f7f7;
    width: 40%;
    height: 2px;
    /* border-radius: 10px; */
}

.slide-items {
    position: relative;
    grid-area: 1/1;
    overflow: hidden;
    border-radius: 30px;
    /* border: 6px solid #000; */
    /* border-radius: 30px; */
}

.slide-items img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.slide-nav {
    grid-area: 1/1;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    margin-top: 10%;
}

.slide-items > * {
    /* position: absolute; */
    top: 0;
    opacity: 0;
    pointer-events: none;
}

.slide-items > .active {
    /* position: relative; */
    opacity: 1;
    display: block;
}

.slide-nav button {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    opacity: 0;
}

.slide-thumb {
    display: flex;
    grid-column: 1/3;
    padding: 0 15px;
}

.slide-thumb > span {
    flex: 1;
    display: block;
    height: 2px;
    background: #afafaf;
    margin: 3px;
    margin-top: 20px;
    /* border-radius: 3px; */
    overflow: hidden;
}

.slide-thumb > span.done:after {
    content: "";
    display: block;
    height: inherit;
    background: rgba(255, 255, 255, 0.9);
    /* border-radius: 3px; */
}

.slide-thumb > span.active:after {
    content: "";
    display: block;
    height: inherit;
    background: rgba(255, 255, 255, 0.9);
    /* border-radius: 3px; */
    transform: translateX(-100%);
    animation: thumb 5s forwards linear;
}

@keyframes thumb {
    to {
        transform: initial;
    }
}
/* new */
#prev-slide {
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(35% - 35vh - 16px);
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}
#next-slide {
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(64% + 35vh - 16px);
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}
#prev-slide::before,
#next-slide::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 10px;
    border-right: 4px solid #555;
    border-bottom: 4px solid #555;
}
#prev-slide::before {
    left: 11px;
    transform: rotate(-225deg);
}
#next-slide::before {
    left: 8px;
    transform: rotate(-45deg);
}
#prev-slide:hover,
#next-slide:hover {
    opacity: 1;
}
#prev-slide:hover::before,
#next-slide:hover::before {
    border-right-color: #043cb7;
    border-bottom-color: #043cb7;
}

.story_header {
        background: #101728;
    opacity: 0.80;
    border-radius: 30px 30px 0px 0px;
    width: 100%;
    position: absolute;
    height: 16%;
    /* z-index: 1; */
}
.story_dialog {
    /* width: 579px !important; */
    /* margin-top: 6% !important; */
    max-width: 738px !important;
    margin: 1.75rem auto;
}
.rate{
    top: -4px;
}
.small_component_fashion_image{
        margin-left: 11px;
}
.small_component_fashion_text{
        padding-left: 8px;
}
.story-image {
    max-height: 350px;
}
